home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 001-100 / 001-025 / 014 / dex / makefile < prev    next >
Makefile  |  1995-03-17  |  728b  |  55 lines

  1. #
  2. #  FILE
  3. #
  4. #    Makefile    make dex utility and documentation
  5. #
  6. #  KEY WORDS
  7. #
  8. #    dex
  9. #    make files
  10. #
  11. #  SYNOPSIS
  12. #
  13. #    make dex
  14. #    make doc
  15. #
  16. #  DESCRIPTION
  17. #
  18. #    Contains instructions to the UNIX "make" utility for
  19. #    building the dex task and dex documents.
  20. #
  21. #  AUTHOR
  22. #
  23. #    Fred Fish
  24. #
  25. #
  26.  
  27. FILES = Makefile dex.h hashtbl.h dex.y dex.l dex0.c dex1.c dex2.c \
  28.     hashtbl.c .dexrc
  29.  
  30. OBJECTS = dex.o dex0.o dex1.o dex2.o hashtbl.o
  31.  
  32. dex :        $(OBJECTS)
  33.         cc $(OBJECTS) -ly -ll -o dex
  34.  
  35. dex.o :        dex.lo dex.c
  36.  
  37. dex0.o dex1.o dex2.o :    dex.h hashtbl.h
  38.  
  39. hashtbl.o :    hashtbl.h
  40.  
  41. dex.c :        dex.y
  42.         yacc dex.y
  43.         mv y.tab.c dex.c
  44.  
  45. dex.lo :    dex.l
  46.         lex dex.l
  47.         mv lex.yy.c dex.lo
  48.  
  49. doc :        dex.doc
  50.  
  51. dex.doc :    dex.ms
  52.         nroff -ms dex.ms >dex.doc
  53.  
  54. all :        dex doc
  55.